home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr37 / satsfaxt.zip / CCPUTILS.ZIP / UTIL.H < prev   
Text File  |  1990-01-30  |  2KB  |  65 lines

  1. /* Error Message structure */
  2. typedef struct ErrorMessage {
  3.     int     ExitCode;                   /* Exit value for fatal errors */
  4.     char    *Message;                   /* Message text */
  5. } ERRORMSG;
  6.  
  7. /* Error message numbers for application errors. */
  8. #define CASNOHWO         1
  9. #define CASNOHWN         2
  10. #define CASNOMEM         3
  11. #define CASDIAG          4
  12. #define CASHW            5
  13. #define CASSEND          6
  14. #define CASNOEDB         7
  15. #define CASNOTCF         8
  16. #define CASNORCF         9
  17. #define CASNOLCF        10
  18. #define CASCREATETEMP   11
  19. #define CASOPENTEMP     12
  20. #define CASBADDATE      13
  21. #define CASBADTIME      14
  22. #define CASARGFILE      15
  23. #define CASARGPATH      16
  24. #define CASARGMULTPATH  17
  25. #define CASNOCAN        18
  26. #define CASNOEVENT      19
  27. #define CASDELTQ        20
  28. #define CASDELLQ        21
  29. #define CASDELRQ        22
  30. #define CASDELJOB       23
  31. #define CASOPENCOVER    24
  32. #define CASMOVE         25
  33. #define CASNOPATH       26
  34. #define CASNODIR        27
  35. #define CASNOCURDIR     28
  36. #define CASNOFRIEZE     29
  37. #define CASBADPORT      30
  38. #define CASBADDRIVER    31
  39. #define CASBADARG       32
  40. #define CASBADARS       33
  41. #define CASBADREDIR     34
  42. #define CASBADCWD       35
  43. #define CASNOTFT        36
  44. #define CASNOTFAX       37
  45. #define CASBADLF        38
  46. #define CASBADFAXFILE   39
  47. #define CASBADLOGOFILE  40
  48. #define CASBADCOVERFILE 41
  49. #define CASBADFILEARG   42
  50. #define CASOPENASCII    43
  51. #define CASOPENPCX      44
  52. #define CASOPENDCX      45
  53. #define CASPRIORMOVE    46
  54. #define CASNOMOVE       47
  55. #define CASNOCUR        48
  56. #define CASNOPRINTER    49
  57. #define CASBADIO        50
  58. #define CASNOPAPER      51
  59.  
  60. #define TRUE 1
  61. #define FALSE 0
  62.  
  63. #define SUCCESS 0
  64. #define FAIL 1
  65.